From: Jay Belanger Date: Sun, 8 Jul 2007 00:01:30 +0000 (+0000) Subject: (math-approx-ln-10,math-approx-ln-2): Add docstrings. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18048 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b2f671faeec9506837438582fa19526710fa6176;p=emacs.git (math-approx-ln-10,math-approx-ln-2): Add docstrings. --- diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el index 6ee7a49feab..d8de812421f 100644 --- a/lisp/calc/calc-math.el +++ b/lisp/calc/calc-math.el @@ -1720,14 +1720,16 @@ (defconst math-approx-ln-10 (eval-when-compile - (math-read-number-simple "2.302585092994045684018"))) + (math-read-number-simple "2.302585092994045684018")) + "An approximation for ln(10).") (math-defcache math-ln-10 math-approx-ln-10 (math-ln-raw-2 '(float 1 1))) (defconst math-approx-ln-2 (eval-when-compile - (math-read-number-simple "0.693147180559945309417"))) + (math-read-number-simple "0.693147180559945309417")) + "An approximation for ln(2).") (math-defcache math-ln-2 math-approx-ln-2 (math-ln-raw-3 (math-float '(frac 1 3))))